12345678910111213141516171819202122 |
- import Header from "@/components/Header";
- import { FC, PropsWithChildren } from "react";
- type Props = {};
- // export const generateMetadata = (props: any) => {
- // console.log(`🚀🚀🚀🚀🚀-> in layout.tsx on 6`, props);
- // return {
- // title: "Sport",
- // };
- // };
- const Layout: FC<PropsWithChildren<Props>> = (props) => {
- const { children } = props;
- return (
- <>
- <Header visibleLanguage={false} />
- <main className={"main-footer-header"}>{children}</main>
- </>
- );
- };
- export default Layout;
|